*{
  position: relative;
  box-sizing: border-box;
}
html {
  width: 100%;
}
body {
  width: 100%;
  /* overflow-x: hidden; */
}
h2 {
  font-size: 32px;
  color: #58595b;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 4px;
}

.nav_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_top .logo {
  width: 350px;
}

.nav_top .logo a {
  display: block;
  height: 80px;
  width: 100%;
  text-indent: -9999px;
  background: url('../image/logo.png') no-repeat center 10px / contain;
}
.navigation a:not(:last-child){
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid#000;
}
.navbar{
  background-color: #90c278;
  padding: 0;
  z-index: 999;
}

.navbar .menu-wrap{
  justify-content: center;
}
.navbar .menu{
  margin: 0;
  padding: 0;  
}
.navbar .menu li.active .menu-link{
  display: flex;
  align-items: center;
  border-radius: 0;
  height: 64px;
}
.navbar .menu .menu-link:hover {
  display: flex;
  align-items: center;
  border-radius: 0;
  height: 64px;
  background-color: #eca242;
}
.navbar .icon-menu{
  margin-left:20px;
}
.navbar .icon-menu a{
  color: #90c278;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
}
.banner {
  position: relative;
  background-image: none;
  height: 100%;
  /* margin-bottom: 80px; */
}
.banner .carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

/* .banner .carousel .carousel-indicators { */
  /* bottom: -8%; */
/* } */
.banner .carousel .carousel-indicators li{
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 1px solid#ccc;
}
.banner .carousel .carousel-indicators li.active{
  background-color: #90c278;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
  height: 30px;
}
.carousel-inner {
  height: 100%;
}
.carousel-item img{
  height: 100%;
}
.carousel-control-prev-icon {
  background-image: url('../image/leftarrow.png');
}
.carousel-control-next-icon {
  background-image: url('../image/rightarrow.png');
}
.el-carousel__item h3 {
  color: #475669;
  text-align: center;
  background-color: #fff;
  line-height: 55px;
  margin: 24px;
  border: 2px solid #90c278;
  border-radius: 30px;
}
.carousel_h3 img {
  height: 30px;
  margin-top: -0.3vw;
}
.response,.form_search,.news,.process{
  margin-bottom: 0px;
}
.response_s{
  background-color: #DEEDD1;  
  padding: 10px 0;
  height: 50px;
  border: 1px solid#DEEDD1; 
  margin-bottom: 50px;
  overflow: hidden;
  cursor: pointer;
}
.response_s:hover .response_items{
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.response_items {
  display: flex;
  flex-direction: column;
  transform: translateY(-5px);
  -webkit-animation: slide 15s 0s infinite linear;
          animation: slide 15s 0s infinite linear;
  
}

@-webkit-keyframes slide {
  0% {
    transform: translateY(-5px); /* 初始位置和结束位置 */
  }
  33% {
    transform: translateY(-41px); /* 向上滚动一个元素的高度 */
  }
  66% {
    transform: translateY(-77px); /* 向上滚动一个元素的高度 */
  }
  100% {
    transform: translateY(-113px); /* 向上滚动两个元素的高度 */
  }
}

@keyframes slide {
  0% {
    transform: translateY(-5px); /* 初始位置和结束位置 */
  }
  33% {
    transform: translateY(-41px); /* 向上滚动一个元素的高度 */
  }
  66% {
    transform: translateY(-77px); /* 向上滚动一个元素的高度 */
  }
  100% {
    transform: translateY(-112px); /* 向上滚动两个元素的高度 */
  }
}
.response_s h3{
  text-align: center;  
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  padding: 5px;
}

.response_intro .row{
  justify-content: center;
  padding-bottom: 100px;
}
.response_card_items{
  width: 81%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.response_card{
  width: 100%;
  aspect-ratio: 10 / 11;
  background-color: #fff;
  border: 2px solid #90c278;
  margin: 25px 0px;
  border-radius: 30px;
  overflow: hidden;
}

.response_card:hover img{
  opacity: 0.5;
  transition: all 0.5s;
}
.response_card img{
	width: 100%;
  height: 90%;
  opacity: 1;
  padding-top: 1vw;
}
.response_card h3{
  position: absolute;
  width: 100%;
  color:#666;
  text-align: center;
  font-size: 1.1vw;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);  
}
.response_card a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.form_search {
  background-image: url('../image/02bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-color: white;
  padding: 40px 0;
}
.form_search_home {
  background-color: #6fbab6;
  padding: 40px 0;
}
.form-inline{
  flex-wrap: nowrap;
  justify-content: center;
}
.form-inline .form-group {
  width: auto;
  margin: 0 10px;
}
.form-inline label {
  margin-right: 4px;
  margin-bottom: 0;
}
.form-inline .form-control {
  width: 120px;
  margin: 8px 0;
}
.prepare_list {
  background-image: url('/static/image/02bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-color: white;
  padding: 40px 0;
}
.btn-info {
  color: #fff;
  background-color: #467c6e;
}
.btn-red-round {
  display: inline-block;
  color: #fff;
  background-color: #467c6e;
  padding: 6px 15px;
  margin-left: 10px;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  letter-spacing:2px;
}
.news{
  background-image: url('../image/02bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0  150px  0;
  
}
.response{
  background-image: url('../image/01bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  padding:  0;
}
.page-link {
  color: #000;
}
.page-link:hover {
  color: #000;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.news .tab-content>.tab-pane {
  display: block;
}
.bulletin-table tr:nth-child(2n) td {
  background-color: #ccc;
}
.news td span{
  background-color: #db7d91;
  padding: 2px 10px;
  color: #000;
  border-radius: 2px;
}
.btn_more{
  border: 1px solid#90c278;
  color: #90c278;
  padding: 5px 10px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 5px;
}
.btn_more:hover{
  background-color: #90c278;
  color: #fff;
}
.process{
  background-image: url('../image/03bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0  280px  0;
  
}
.process_card{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 150px;
  padding: 10px 10px 0px 10px;
  border-radius: 100%;
  border: 5px solid#000;
  background-color: #dfe7bb;
  opacity: 1;
  margin: 0 auto;

}
.process_card:hover{
  opacity: 0.6;

}
.process_card a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}
.process_card2{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 150px;
  padding: 10px 10px 0px 10px;
  border-radius: 100%;
  border: 5px solid#000;
  background-color: #ebc2b7;
  opacity: 1;
  margin: 0 auto;

}
.process_card2:hover{
  opacity: 0.6;

}
.process_card2 a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}
.process_card3{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 150px;
  padding: 10px 10px 0px 10px;
  border-radius: 100%;
  border: 5px solid#000;
  background-color: #ece3bb;
  opacity: 1;
  margin: 0 auto;

}
.process_card3:hover{
  opacity: 0.6;

}
.process_card3 a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}
.process_card4{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 150px;
  padding: 10px 10px 0px 10px;
  border-radius: 100%;
  border: 5px solid#000;
  background-color: #e4cbb7;
  opacity: 1;
  margin: 0 auto;

}
.process_card4:hover{
  opacity: 0.6;

}
.process_card4 a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}
/* .process_card:hover img{ */
  /* width: 100%; */
  /* -webkit-filter: grayscale(100%); */
          /* filter: grayscale(100%); */
          /* transition: all 0.5s; */
/* } */
/* .process_card img{ */
	/* width: 100%; */
  /* -webkit-filter: grayscale(20%); */
          /* filter: grayscale(20%); */
/* } */
.calendar{
  background-image: url('../image/calendar-bg.png');
}
.calendar h2{
  text-align: left;
}
.calendar .card{
  background-color: #fff;
  padding: 0 15px 15px 15px;
}
.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fc-toolbar .fc-left {
  width: 100%;
}
.fc-toolbar .fc-right {
  display: flex;
  justify-content: end;
  width: 100%;
}
.btn.btn-primary {
  background: #fff;
  color: #000;
  border: 1px solid#000;
}
.about{
  background-color: #eca242;
}
.about .about_img{
  width: 100%;
}
.about_items{
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .about_tit{
  width: 40%;
  display: flex;
  margin-bottom: px;
  justify-content: space-between;
}
.about .about_tit h3{
  margin: 0;
}
.about .about_tit a{
  color: #90c278;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 20px;
  margin: 0;
  font-size: 1rem;
}
.about .about_intro p{
  font-size: 1rem;
  color: #fff;
  padding: 20px 40px 0 0;
}

footer{
  background-color: #90c278;  
}
footer .address{
  display: flex;
  flex-direction: column;
}

.page_banner{
  width: 100%;
  height:14em;
}
.page_banner img{
  width: 100%;
  height: 100%;
}
.page_intro{
  background-image: url('../image/calendar-bg.png');
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  padding: 100px 0  150px  0;
}
.page_intro h2 {
  text-align: initial;
  font-size: 28px;
  color: #e46135;
}
@media (max-width: 520px) {
  .nav_top{
    justify-content: center;
    padding: 10px;
  }
  .nav_top .logo a {
    width:100%;
    height: 50px;
    background-position: center center;
  }
  .nav_top .logo {
    width: 235px;
    display: none;
  }
  .navigation a{
    font-size: 18px;  
  }
  .navbar{
    display: block;
    width: 100%;
    background-color: #75B762;
  }
  .navbar .logo{
    background-color: #99db7d; 
  }
  .navbar .menu{
    margin: 0 20px 0 20px;
    padding: 0 20px 0 20px; 
  }
  .navbar .menu li.active .menu-link{
    justify-content: center;
  }
  .navbar .menu .menu-link:hover{
    justify-content: center;
    background-color: transparent;
  }
  .banner {
    height: auto;
  }
  .about .about_tit{
    width: 100%;
  }
  .container {
    padding: unset;
  }
  .el-carousel__item h3 {
    color: #475669;
    text-align: center;
    background-color: #fff;
    line-height: 30px;
    margin: 20px;
    border: 2px solid #90c278;
    border-radius: 30px;
  }
  .carousel_h3 {
    display: grid;
    grid-template-columns: 30px auto;
    align-items: center;
    padding-left: 20px;
  }
  .carousel_h3 img {
    height: 30px;
  }
  .response {
    background-size: auto 110%;
  }
  .response_s h3{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
  }
  .response_card_items {
    width: unset;
  }
  .response_card {
    height: 135px;
    width: 95%;
  }
  .response_card h3{
    font-size: 4vw;
    bottom: 1vw;
  }
  .form-inline {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-inline .form-control{
    width: 100%;
  }

  .form-inline .form-group {
    width: 100%;
    margin: 0 10px 20px;
    text-align: center;
  }
  .form-inline .form-group:last-child {
    margin-top: 50px;
  }
  .bulletin-table th:first-child {
    width: 10%;
  }
  .bulletin-table th:last-child {
    width: 16%;
  }
  .calendar h2 {
    text-align: center;
  }
  .calendar .left {
    padding-left: 0px;
    margin-bottom: 20px;
  }
  .fc-toolbar.fc-header-toolbar {
    flex-wrap: wrap;
  }
  .fc-toolbar .fc-left {
    width: 100%;
    margin: 10px 0 ;
  }
  .fc-scroller.fc-day-grid-container{
    height: auto !important;
  }
  .news {
    padding: 30px 0 80px 0;
  }
  .process{
    padding-bottom: 50px;
  }
  .calendar {
    background-size: contain;
    padding: 35px 0 80px;
  }
  .about .about_intro p {
    padding: 20px 0px 0 0;
  }
  .page_banner{
    width: 100%;
    height: 9em;
  }
}
